home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / modelers / geomview / source.lha / Geomview / src / lib / pointlist / pointlistP.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-10  |  423 b   |  19 lines

  1. #ifndef POINTLISTP_H
  2. #define POINTLISTP_H
  3.  
  4. #include "pointlist.h"
  5.  
  6. #define POINTLIST_MAXNAME 128
  7. #define POINTLIST_MAXMETH 4
  8. #define POINTLIST_METHNAMES "PointList_get", "PointList_fillin", \
  9.                             "PointList_set", "PointList_length"
  10.  
  11. typedef struct {
  12.   char name[POINTLIST_MAXNAME];
  13.   GeomExtFunc *func;
  14. } SpecFunc;
  15.  
  16. void pointlist_initspec(SpecFunc *specfunc, int n_func, GeomClass *class);
  17.  
  18. #endif
  19.